home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-259.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  106 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(13658);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2004-0600", "CAN-2004-0686");
  13.  
  14.  name["english"] = "RHSA-2004-259: samba";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated samba packages that fix buffer overflows, as well as other various
  21.   bugs, are now available.
  22.  
  23.   Samba provides file and printer sharing services to SMB/CIFS clients.
  24.  
  25.   Evgeny Demidov discovered a flaw in the internal routine used by the Samba
  26.   Web Administration Tool (SWAT) in Samba versions 3.0.2 through 3.0.4. When
  27.   decoding base-64 data during HTTP basic authentication, an invalid base-64
  28.   character could cause a buffer overflow. If the SWAT administration
  29.   service is enabled, this flaw could allow an attacker to execute arbitrary
  30.   code. The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  31.   assigned the name CAN-2004-0600 to this issue.
  32.  
  33.   Additionally, the Samba team discovered a buffer overflow in the code used
  34.   to support the \'mangling method = hash\' smb.conf option. Please be aware
  35.   that the default setting for this parameter is \'mangling method = hash2\'
  36.   and therefore not vulnerable. The Common Vulnerabilities and Exposures
  37.   project (cve.mitre.org) has assigned the name CAN-2004-0686 to this issue.
  38.  
  39.   This release includes the updated upstream version 3.0.4 together with
  40.   backported security patches to correct these issues as well as a number of
  41.   post-3.0.4 bug fixes from the Samba subversion repository.
  42.  
  43.   The most important bug fix allows Samba users to change their passwords
  44.   if Microsoft patch KB 828741 (a critical update) had been applied.
  45.  
  46.   All users of Samba should upgrade to these updated packages, which
  47.   resolve these issues.
  48.  
  49.  
  50.  
  51.  
  52. Solution : http://rhn.redhat.com/errata/RHSA-2004-259.html
  53. Risk factor : High';
  54.  
  55.  script_description(english:desc["english"]);
  56.  
  57.  summary["english"] = "Check for the version of the samba packages";
  58.  script_summary(english:summary["english"]);
  59.  
  60.  script_category(ACT_GATHER_INFO);
  61.  
  62.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  63.  family["english"] = "Red Hat Local Security Checks";
  64.  script_family(english:family["english"]);
  65.  
  66.  script_dependencies("ssh_get_info.nasl");
  67.  
  68.  script_require_keys("Host/RedHat/rpm-list");
  69.  exit(0);
  70. }
  71.  
  72. include("rpm.inc");
  73. if ( rpm_check( reference:"samba-3.0.4-6.3E", release:"RHEL3") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"samba-client-3.0.4-6.3E", release:"RHEL3") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"samba-common-3.0.4-6.3E", release:"RHEL3") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"samba-swat-3.0.4-6.3E", release:"RHEL3") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93. if ( rpm_check( reference:"samba-3.0.4-6.3E", release:"RHEL3") )
  94. {
  95.  security_hole(0);
  96.  exit(0);
  97. }
  98.  
  99. if ( rpm_exists(rpm:"samba-", release:"RHEL3") )
  100. {
  101.  set_kb_item(name:"CAN-2004-0600", value:TRUE);
  102.  set_kb_item(name:"CAN-2004-0686", value:TRUE);
  103. }
  104.  
  105. set_kb_item(name:"RHSA-2004-259", value:TRUE);
  106.